home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / AddOns / Components / TMagicMacros Delphi / TMM2_D4T / TMM_TRIA.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1998-10-15  |  1.3 KB  |  43 lines

  1. unit TMM_Trial;
  2.   /////////////////////////////////////////////////////////
  3.   //                                                     //
  4.   //           TMagicMacros-Component v2.0               //
  5.   //                  TRIAL VERSION                      //
  6.   //         (only works while IDE is running)           //
  7.   //                                                     //
  8.   // (C) Niels Vanspauwen, 15/10/98                      //
  9.   //     E-mail: Niels.Vanspauwen@Kagi.com               //
  10.   //     Homepage: http://magicmacros.8m.com             //
  11.   //                                                     //
  12.   /////////////////////////////////////////////////////////
  13.   {This component can be dropped on a form to support macro-recording
  14.    and playback.
  15.    Only one instance of this component can be created
  16.    in a single application !}
  17.  
  18. interface
  19.  
  20. {$B-} {Partial Boolean evalution ON}
  21. {$X+} {Extended Syntax ON}
  22. {$H+} {Longstrings ON}
  23. {$I+} {IOChecking ON}
  24. {$Z1} {Bytesized Enumerated types}
  25. {$O+} {Compiler optimisations ON}
  26. {$Q-} {Overflowchecking OFF}
  27. {$R-} {RangeChecking OFF}
  28.  
  29. procedure Register;
  30.  
  31. implementation
  32.  
  33. uses
  34.   MagMcrTrial, Classes, DsgnIntf;
  35.  
  36. procedure Register;
  37. begin
  38.   RegisterComponents('Misc', [TMagicMacros]);
  39.   RegisterComponentEditor(TMagicMacros, TMagicMacrosEditor);
  40. end; {procedure Register}
  41.     
  42. end.
  43.